home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / ps40sdk / examples / common / headers.h / piabout.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-14  |  1.1 KB  |  43 lines

  1. /*
  2.     File: PIAbout.h
  3.  
  4.     Copyright (c) 1992-6, Adobe Systems Incorporated.
  5.     All rights reserved.
  6.  
  7.     This file describes version 4.0 of Photoshop's plug-in module interface
  8.     for the about box selector.
  9. */
  10.  
  11. #ifndef __PIAbout__
  12. #define __PIAbout__
  13.  
  14. /******************************************************************************/
  15. /* Pragma to byte align structures; only for Borland C */
  16.  
  17. #if defined(__BORLANDC__)
  18. #pragma option -a-
  19. #endif
  20.  
  21. /******************************************************************************/
  22. #define plugInSelectorAbout      0
  23.  
  24. typedef struct AboutRecord 
  25.     {
  26.  
  27.     void *        platformData;        /* Platform specific information. */
  28.  
  29.     char        reserved [252];     /* Set to zero */
  30.  
  31.     }
  32. AboutRecord, *AboutRecordPtr;
  33.  
  34. /******************************************************************************/
  35. /* turn off the byte align pragma back to its original state; only for Borland C */
  36.  
  37. #if defined(__BORLANDC__)
  38. #pragma option -a.
  39. #endif
  40.  
  41. /******************************************************************************/
  42.  
  43. #endif /* __PIAbout__ */